Skip to content
This repository has been archived by the owner on Sep 1, 2020. It is now read-only.

Latest commit

 

History

History
12 lines (9 loc) · 436 Bytes

7.3.8 - Http/Response->end.md

File metadata and controls

12 lines (9 loc) · 436 Bytes

Http\Response->end

发送Http响应体,并结束请求处理。

function Http\Response->end(string $html);
  • end操作后将向客户端浏览器发送HTML内容
  • end只能调用一次,如果需要分多次向客户端发送数据,请使用write方法
  • 客户端开启了KeepAlive,连接将会保持,服务器会等待下一次请求
  • 客户端未开启KeepAlive,服务器将会切断连接